home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 January: Mac OS SDK / Dev.CD Jan 97 SDK2.toast / Development Kits (Disc 2) / OpenDoc Development Framework / ODFDev / ODF / Found / ODUtils / ODConfig.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-09-17  |  1007 b   |  32 lines  |  [TEXT/MPS ]

  1. /*    ODConfig.h        Configuration header that defines symbols you'll need in order
  2.  *                    to compile OpenDoc code. If you use a precompiled header these
  3.  *                    symbols are already defined for you, but if you don't, or if you
  4.  *                    are making up your own precompiled header, you'll need to include
  5.  *                    this header before any OpenDoc related headers.
  6.  *
  7.  *                    For non-debug builds (e.g. when shipping your product) just
  8.  *                    define ODDebug as 0 before including this header.
  9.  */
  10.  
  11. #define _PLATFORM_MACINTOSH_ 1        /* Enable Mac-specific OD stuff */
  12. #define _PLATFORM_BIG_ENDIAN_ 1        /* Enable std writing (l.endian) on big endian platforms */
  13.  
  14. #include "FWEnvDef.h"
  15.  
  16. #ifndef ODDebug
  17. #define ODDebug 0                    /* 1 for debug build, 0 for non-debug build */
  18. #endif
  19.  
  20. #ifndef SystemSevenOrLater
  21. #define SystemSevenOrLater 1
  22. #endif
  23.  
  24. #ifndef OLDROUTINENAMES
  25. #define OLDROUTINENAMES 0            /* Disallow old trap names, e.g. GetItem for GetMenuItem */
  26. #endif
  27.  
  28. #ifndef OLDROUTINELOCATIONS
  29. #define OLDROUTINELOCATIONS 0
  30. #endif
  31.  
  32.